home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / olrdrs / kqwk105.zip / FUNCKEYS.DOC < prev    next >
Text File  |  1992-04-05  |  1KB  |  43 lines

  1. Notes for configuring user defined function keys for KingQWK.
  2.  
  3. User defined function keys are implemented in KingQWK.  Note that you
  4. must use Shift-[Fkey] to invoke them.  You can configure the function
  5. keys in the "F Keys" area of KingCfg.
  6.  
  7. KingQWK can only directly call a COM or EXE file.  Therefore batch files
  8. and DOS commands must be preceded with:
  9.  
  10. COMMAND.COM /C     (this can be shortened to @COMC@)
  11.  
  12. For example, to append the current message to a file named ANSI.MSG, you
  13. would need to use the following setup.
  14.  
  15. @COMC@ TYPE @CMSG@ >> ANSI.MSG
  16.  
  17. Applicable user macros are:
  18.  
  19. @COMC@  - expands to "COMMAND.COM /C"
  20. @CNUM@  - the current conference number
  21. @ID@    - the mail door id for the current BBS from CONTROL.DAT
  22. @CMSG@  - the currently displayed message's DOS file name
  23. @WORK@  - the current path to your configured KingQWK working
  24.           directory
  25.  
  26. Sample usage:
  27.  
  28. @COMC@ TYPE @CMSG@ >> @ID@.@CNUM@
  29.  
  30. might become:
  31.  
  32. COMMAND.COM /C TYPE CURRENT.MSG >> IDCBBS.302
  33.  
  34. and
  35.  
  36. THEDRAW.EXE @CMSG@
  37.  
  38. would become:
  39.  
  40. THEDRAW CURRENT.MSG
  41.  
  42. These variables are not case sensitive.  @CNUM@ = @cnum@ = @CNum@
  43.